home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
usenet
/
sources
/
volume2
/
util
/
wns
/
Makefile
next >
Wrap
Makefile
|
1988-10-20
|
675b
|
28 lines
# Makefile for wns
#
CC = cc
# Define in CFLAGS:
# SYSINC if include file hierarchy includes the sys/ directory
# REGEX if using berkeley-style re_exec() and re_comp()
# REGCMP if using regcmp() and regex()
# REGCOMP if using regcomp() and regexec()
# OS_UNIX if running under unix (or AmigaDOS)
# AMIGA if running under AmigaDOS
# OS_CPM if running under CP/M80
# STRCSPN if you need the strcspn() function.
#
#
#CFLAGS=-DOS_UNIX -DREGCMP -DSYSINC
CFLAGS=-DOS_UNIX -DAMIGA -DREGCOMP -DSTRCSPN -n
#
# Define LIBS to reflect the librar[y][ies] needed to fetch the r/e routines.
#
LIBS=-lc
#
WNSOBJS=wns.o regexp.o regerror.o
wns: $(WNSOBJS)
ln $(WNSOBJS) $(LIBS) -o wns